home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / internet / other / news / snz128s.tos / SRC / FILEOPS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-28  |  743 b   |  40 lines

  1. /* $Id: FILEOPS.H,v 1.2 1994/02/05 18:44:34 gbj Exp user $ */
  2.  
  3.  
  4. #ifdef ATARI   /* shadow fopen() to fopenx() to translate seperators - DFN */
  5.  
  6. #undef    fopen
  7. #define    fopen fopenx
  8. FILE *fopenx(const char *, const char *);
  9.  
  10. #undef    remove
  11. #define    remove    removex
  12. int    removex(const char *);
  13.  
  14. #undef    rename
  15. #define    rename renamex
  16. int    renamex(const char *, const char *);
  17.  
  18. #undef    open
  19. #define    open    openx
  20. int    openx(const char *, int, int);
  21.  
  22. #undef    creat
  23. #define     creat creatx
  24. int    creatx(const char *, int);
  25.  
  26. #undef    unlink
  27. #define    unlink unlinkx
  28. int    unlinkx(const char *);
  29.  
  30. #undef     access
  31. #define    access accessx
  32. int    accessx(const char *, int);
  33.  
  34. #undef     mkdir
  35. #define    mkdir mkdirx
  36. int    mkdirx(const char *);
  37.  
  38. #endif
  39.  
  40.